home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
050
/
turbo_t2.arc
/
PROG15A.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-06-28
|
261b
|
16 lines
PROGRAM PROG15A;
{$U+ Copyright (C), 1985 by Lyle Faurot. All rights reserved.
New Topics: Cursor location
VAR
X, Y : Integer;
BEGIN
ClrScr;
Write('Enter X and Y: ');
ReadLn(X, Y);
GotoXY(X, Y);
WriteLn(X,' ',Y);
END.